@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
*{
    margin:0;
    padding:0;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#333;
}

/* Hero */
.hero{
    padding:90px 0;
    background:linear-gradient(135deg,#005bea,#00c6fb);
    color:#fff;
}

.product-tag{
    display:inline-block;
    background:#fff;
    color:#005bea;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:50px;
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    line-height:1.8;
}

.hero-img{
    max-height:500px;
    animation:float 4s infinite ease-in-out;
}

@keyframes float{
    
    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

.hero p{
    font-size:16px;
}

.btn-primary-custom,
.btn-outline-custom{
    display:block;
    margin:15px auto;
}

.btn-primary-custom{
    background:#fff;
    color:#005bea;
    padding:12px 30px;
    font-weight:bold;
    border-radius:30px;
    text-decoration:none;
    margin-right:10px;
}

.btn-outline-custom{
    border:2px solid #fff;
    padding:12px 30px;
    border-radius:30px;
    color:#fff;
    text-decoration:none;
    font-weight:bold;
}

.btn-primary-custom:hover{
    background:#005bea;
    color:#fff;
}    

.btn-outline-custom:hover{
    background:#fff;
    color:#005bea;
}    

/* Section */
section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-weight:bold;
    font-size:38px;
}

/* Feature */
.feature-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    transition:.4s;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature-card i{
    font-size:45px;
    color:#005bea;
    margin-bottom:20px;
}

.feature-card:hover{
    transform:translateY(-8px);
    background:linear-gradient(135deg,#0056ff,#00cfff);
}

.feature-card:hover h4,
.feature-card:hover p{
    color:#fff;
}

.feature-card:hover i{
    color:#fff;
}

/* Table */
.specification{
    background:#fff;
}

.table th{
    width:260px;
}

.table-striped {
    --bs-table-striped-bg:#dbeafe;
}

/* Applications */
.applications{
    background:#eef6ff;
}

.app-card{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:15px;
    transition:.3s;
}

.app-card:hover{
    background:#2472f0;
    color:#fff;
}

.app-card i{
    font-size:45px;
    margin-bottom:20px;
    color:#005bea;
}

.app-card:hover i{
    color:#fff;
}  

/* CTA */
.cta{
    background:#2871e6;
    color:#fff;
}

.cta h2{
    font-size:40px;
    margin-bottom:20px;
}

.cta p{
    font-size:18px;
    margin-bottom:30px;
}

/* Footer */
.footer{
    background:#003366;
    color:#fff;
    padding:25px 0;
}

/* Responsive */
@media(max-width:992px){
    
    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:40px;
    }

    .hero-img{
        margin-top:40px;
    }

}

@media(max-width:768px){
    
    .hero h1{
        font-size:34px;
    }

    .section-title h2{
        font-size:30px;
    }
    
}



